net/netip.uint128.hi (field)
20 uses
net/netip (current package)
netip.go#L418: hi1, hi2 := ip.addr.hi, ip2.addr.hi
netip.go#L458: return ip.Is6() && ip.addr.hi == 0 && ip.addr.lo>>32 == 0xffff
netip.go#L533: return ip.addr.hi == 0 && ip.addr.lo == 1
netip.go#L548: return ip.addr.hi>>(64-8) == 0xff // ip.v6(0) == 0xff
netip.go#L675: bePutUint64(a16[:8], ip.addr.hi)
netip.go#L705: bePutUint64(ret[:8], ip.addr.hi)
netip.go#L988: bePutUint64(b[:8], ip.addr.hi)
uint128.go#L14: hi uint64
uint128.go#L29: func (u uint128) isZero() bool { return u.hi|u.lo == 0 }
uint128.go#L33: return uint128{u.hi & m.hi, u.lo & m.lo}
uint128.go#L38: return uint128{u.hi ^ m.hi, u.lo ^ m.lo}
uint128.go#L43: return uint128{u.hi | m.hi, u.lo | m.lo}
uint128.go#L48: return uint128{^u.hi, ^u.lo}
uint128.go#L54: return uint128{u.hi - borrow, lo}
uint128.go#L60: return uint128{u.hi + carry, lo}
uint128.go#L68: return [2]*uint64{&u.hi, &u.lo}
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |